polkadot-node-jaeger 11.0.0

Polkadot Jaeger primitives, but equally useful for Grafana/Tempo (polkadot v1.10.0)
Documentation

Polkadot Jaeger related primitives

Provides primitives used by Polkadot for interfacing with Jaeger.

Integration

See https://www.jaegertracing.io/ for an introduction.

The easiest way to try Jaeger is:

  • Start a docker container with the all-in-one docker image (see below).
  • Open your browser and navigate to https://localhost:16686 to access the UI.

The all-in-one image can be started with:

podman login docker.io
podman run -d --name jaeger \
-e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
-p 5775:5775/udp \
-p 6831:6831/udp \
-p 6832:6832/udp \
-p 5778:5778 \
-p 16686:16686 \
-p 14268:14268 \
-p 14250:14250 \
-p 9411:9411 \
docker.io/jaegertracing/all-in-one:1.21